home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh -f
-
- set infile = "NXBitmapImageRepControl.m"
- set outfile = "Bitmap.controls"
- #set outpath = "/LocalLibrary/Converters"
- set outpath = "."
-
- echo "cc `allArchs` $1 -c $infile"
- cc `allArchs` $1 -c $infile
- #echo "ld -r NXBitmapImageRepControl.o -lm -o $outpath/$outfile"
- #ld -r NXBitmapImageRepControl.o -lm -o $outpath/$outfile
-
- set outname = `basename $infile .m`
-
- if ( $2 == "1" ) then
- echo "mv $outpath/$outname.o ~/Library/Converters/$outfile"
- mv $outpath/$outname.o ~/Library/Converters/$outfile
- endif
-